Commands EchoΒΆ

The commands echo is a simple system that outputs the actions performed with the mouse or keyboard in the GUI as Lua scripts. These scripts are very useful for scripters to better understand Guerilla scripting.

Activate the commands echo

In the View menu, select the 'Commands Echo' item. Once checked, the console will output each and every action performed.

For example:

local mod=Document:modify()
mod.select({"RenderPass"},"replace")
mod.finish()

results from the user selecting the RenderPass node in the Node List.